home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-09-06 | 1.3 KB | 101 lines | [TEXT/CWIE] |
- // DModalStuffData.cp -- data container class for Everything
-
- #include "AMEngine.h"
- #include "PString.h"
- #include "DModalStuffData.h"
-
-
- //----------
- DModalStuffData::DModalStuffData ()
- {
- mTools2 = 0;
- mFromValuesList3 = 0;
- mFromMenu2 = 0;
- mTextList2 = 0;
- }
-
- //----------
- DModalStuffData::~DModalStuffData ()
- {
- }
-
- //----------
- void DModalStuffData::ReadFromFile (
- AMEngine* engine)
- {
- }
-
- //----------
- void DModalStuffData::WriteToFile (
- AMEngine* engine)
- {
- }
-
-
- //----------
- SInt16 DModalStuffData::GetTools2 () const
- {
-
- return mTools2;
- }
-
- //----------
- void DModalStuffData::SetTools2 (
- SInt16 inValue)
- {
- mTools2 = inValue;
-
- SignalDataChanged (idTools2);
- }
-
-
- //----------
- SInt16 DModalStuffData::GetFromValuesList3 () const
- {
-
- return mFromValuesList3;
- }
-
- //----------
- void DModalStuffData::SetFromValuesList3 (
- SInt16 inValue)
- {
- mFromValuesList3 = inValue;
-
- SignalDataChanged (idFromValuesList3);
- }
-
-
- //----------
- SInt16 DModalStuffData::GetFromMenu2 () const
- {
-
- return mFromMenu2;
- }
-
- //----------
- void DModalStuffData::SetFromMenu2 (
- SInt16 inValue)
- {
- mFromMenu2 = inValue;
-
- SignalDataChanged (idFromMenu2);
- }
-
-
- //----------
- SInt16 DModalStuffData::GetTextList2 () const
- {
-
- return mTextList2;
- }
-
- //----------
- void DModalStuffData::SetTextList2 (
- SInt16 inValue)
- {
- mTextList2 = inValue;
-
- SignalDataChanged (idTextList2);
- }
-